Lsync + Rsync : Sync Files timely
2016/06/19 |
Install Lsyncd that is a flexible cross-platform synchronization tool.
|
|
[1] | |
[2] | In addition to settings of [1], Install and configure Lsyncd to sync files or directories timely. |
root@dlp:~#
root@dlp:~# apt-get -y install lsyncd mkdir /etc/lsyncd
root@dlp:~#
vi /etc/lsyncd/lsyncd.conf.lua # create new settings{ statusFile = "/tmp/lsyncd.stat", statusInterval = 1, } sync{ default.rsync, # source directory source="/root/work/", # destination Hostname or IP address:(the name set in rsyncd.conf) target="10.0.0.31::backup", # excluding list excludeFrom="/etc/rsync_exclude.lst", } systemctl restart lsyncd |
[3] |
Make sure files and directories are copied timely on destination Host.
|